 *{
      margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20PX 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .logo{
    width: 80px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 17px;
}
 body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: black;
      color: white;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 900px;
      margin: 50px auto;
      background-color: black;
      padding: 40px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
    }

    h1 {
      text-align: center;
      color: red;
      font-size: 36px;
      margin-bottom: 20px;
    }

    h2 {
      color: red;
      margin-top: 30px;
      font-size: 24px;
    }

    p {
      line-height: 1.7;
      font-size: 16px;
      margin-bottom: 20px;
    }

    

    @media screen and (max-width: 600px) {
      .container {
        padding: 20px;
      }

      h1 {
        font-size: 28px;
      }

      h2 {
        font-size: 20px;
      }

      p {
        font-size: 15px;
      }
    }

    table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

table, th, td {
  border: 1px solid #ccc;
}

th {
  background-color: #002244;
  color: white;
  padding: 12px;
  text-align: left;
}

td {
  padding: 10px;
  background-color: black;
}

tr:nth-child(even) td {
  background-color: black;
}
